home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / lisp / wgdb-42.lha / wgdb-4.2 / gdb / README < prev    next >
Text File  |  1992-09-11  |  23KB  |  574 lines

  1.         README for gdb-4.2 release
  2.     John Gilmore             16 Oct 91
  3.  
  4. This is GDB, the GNU source-level debugger, presently running under un*x.
  5. A summary of features new since gdb-3.5 is in the file `WHATS.NEW'.
  6.  
  7.  
  8. Unpacking and Installation -- quick overview
  9. ==========================
  10.  
  11. In this release, the GDB debugger sources, the generic GNU include
  12. files, the BFD ("binary file description") library, the readline library,
  13. and a miscellaneous library all have directories of their own underneath
  14. the gdb-4.2 directory.  The idea is that a variety of GNU tools can
  15. share a common copy of these things.  Configuration scripts and
  16. makefiles exist to cruise up and down this directory tree and
  17. automatically build all the pieces in the right order.
  18.  
  19. When you unpack the gdb-4.2.tar.Z file, you'll get a directory called
  20. `gdb-4.2', which contains:
  21.  
  22.   Makefile.in       config/           gdb/              texinfo/
  23.   README            config.sub*       include/
  24.   README.configure  configure*        libiberty/
  25.   bfd/              configure.in      readline/
  26.  
  27. To build GDB, you can just do:
  28.  
  29.     cd gdb-4.2
  30.     ./configure HOSTTYPE        (e.g. sun4, decstation)
  31.     make
  32.     cp gdb/gdb /usr/local/bin/gdb    (or wherever you want)
  33.  
  34. This will configure and build all the libraries as well as GDB.
  35. If you get compiler warnings during this stage, see the `Reporting Bugs'
  36. section below; there are a few known problems.
  37.  
  38. GDB can be used as a cross-debugger, running on a machine of one type
  39. while debugging a program running on a machine of another type.  See below.
  40.  
  41.  
  42. More Documentation
  43. ==================
  44.  
  45.    The GDB 4.2 release includes an already-formatted reference card,
  46. ready for printing on a PostScript printer, as `gdb-4.2/gdb/refcard.ps'.
  47. It uses the most common PostScript fonts:  the Times family, Courier,
  48. and Symbol.  If you have a PostScript printer, you can print the
  49. reference card by just sending `refcard.ps' to the printer.
  50.  
  51.    The release also includes the online Info version of this manual
  52. already formatted: the main Info file is `gdb-4.2/gdb/gdb.info', and
  53. it refers to subordinate files matching `gdb.info*' in the same
  54. directory.
  55.  
  56.    If you want to make these Info files yourself from the GDB
  57. manual's source, you need the GNU `makeinfo' program.  Once you have
  58. it, you can type
  59.  
  60.      cd gdb-4.2/gdb
  61.      make gdb.info
  62.  
  63. to make the Info file.
  64.  
  65.    If you want to format and print copies of the manual, you need
  66. several things:
  67.  
  68.    * TeX, the public domain typesetting program written by Donald
  69.      Knuth, must be installed on your system and available through
  70.      your execution path.
  71.  
  72.    * `gdb-4.2/texinfo': TeX macros defining the GNU Documentation
  73.      Format.
  74.  
  75.    * *A DVI output program.*  TeX doesn't actually make marks on
  76.      paper; it produces output files called DVI files.  If your
  77.      system has TeX installed, chances are it has a program for
  78.      printing out these files; one popular example is `dvips', which
  79.      can print DVI files on PostScript printers.
  80.  
  81. Once you have these things, you can type
  82.  
  83.      cd gdb-4.2/gdb
  84.      make gdb.dvi
  85.  
  86. to format the text of this manual, and print it with the usual output
  87. method for TeX DVI files at your site.
  88.  
  89.    If you want to print the reference card, but don't have a
  90. PostScript printer, or you want to use Computer Modern fonts
  91. instead, you can still print it if you have TeX.  Format the
  92. reference card by typing
  93.  
  94.      cd gdb-4.2/gdb
  95.      make refcard.dvi
  96.  
  97. The GDB reference card is designed to print in landscape mode on US
  98. "letter" size paper; that is, on a sheet 11 inches wide by 8.5
  99. inches high.  You will need to specify this form of printing as an
  100. option to your DVI output program.
  101.  
  102.  
  103. Installing GDB
  104. ==============
  105.  
  106.    GDB comes with a `configure' script that automates the process of
  107. preparing GDB for installation; you can then use `make' to build the
  108. `gdb' program.
  109.  
  110.    The gdb distribution includes all the source code you need for gdb
  111. in a single directory `gdb-4.2'.  That directory in turn contains:
  112.  
  113. `gdb-4.2/configure (and supporting files)'
  114.      script for configuring GDB and all its supporting libraries.
  115.  
  116. `gdb-4.2/gdb'
  117.      the source specific to GDB itself
  118.  
  119. `gdb-4.2/bfd'
  120.      source for the Binary File Descriptor Library
  121.  
  122. `gdb-4.2/include'
  123.      GNU include files
  124.  
  125. `gdb-4.2/libiberty'
  126.      source for the `-liberty' free software library
  127.  
  128. `gdb-4.2/readline'
  129.      source for the GNU command-line interface
  130.  
  131. It is most convenient to run `configure' from the `gdb-4.2'
  132. directory.  The simplest way to configure and build GDB is the
  133. following:
  134.  
  135.      cd gdb-4.2
  136.      ./configure HOST
  137.      make
  138.  
  139. where HOST is something like `sun4' or `decstation', that identifies
  140. the platform where GDB will run.  This builds the three libraries
  141. `bfd', `readline', and `libiberty', then `gdb' itself.  The
  142. configured source files, and the binaries, are left in the
  143. corresponding source directories.
  144.  
  145.    `configure' is a Bourne-shell (`/bin/sh') script; if your system
  146. doesn't recognize this automatically when you run a different shell,
  147. you may need to run `sh' on it explicitly:  `sh configure HOST'.
  148.  
  149.    You can *run* the `configure' script from any of the subordinate
  150. directories in the GDB distribution (if you only want to configure
  151. that subdirectory); but be sure to specify a path to it.  For
  152. example, to configure only the `bfd' subdirectory,
  153.  
  154.      cd gdb-4.2/bfd
  155.      ../configure HOST
  156.  
  157.    You can install `gdb' anywhere; it has no hardwired paths. 
  158. However, you should make sure that the shell on your path (named by
  159. the `SHELL' environment variable) is publicly readable; some systems
  160. refuse to let GDB debug child processes whose programs are not
  161. readable, and GDB uses the shell to start your program.
  162.  
  163.  
  164. Configuration Subdirectories
  165. ============================
  166.  
  167.    If you want to run GDB versions for several host or target
  168. machines, you'll need a different gdb compiled for each combination
  169. of host and target.  `configure' is designed to make this easy by
  170. allowing you to generate each configuration in a separate
  171. subdirectory.  If your `make' program handles the `VPATH' feature
  172. (GNU `make' does), running `make' in each of these directories then
  173. builds the gdb program specified there.
  174.  
  175.    `configure' creates these subdirectories for you when you
  176. simultaneously specify several configurations; but it's a good habit
  177. even for a single configuration.  You can specify the use of
  178. subdirectories using the `+subdirs' option (abbreviated `+sub'). 
  179. For example, you can build GDB this way on a Sun 4 as follows:
  180.  
  181.      cd gdb-4.2
  182.      ./configure +sub sun4
  183.      cd H-sun4/T-sun4
  184.      make
  185.  
  186.    When `configure' uses subdirectories to build programs or libraries,
  187. it creates nested directories `H-HOST/T-TARGET'.  `configure' uses
  188. these two directory levels because GDB can be configured for
  189. cross-compiling: GDB can run on one machine (the host) while debugging
  190. programs that run on another machine (the target).  You specify
  191. cross-debugging targets by giving the `+target=TARGET' option to
  192. `configure'.  Specifying only hosts still gives you two levels of
  193. subdirectory for each host, with the same configuration suffix on both;
  194. that is, if you give any number of hosts but no targets, GDB will be
  195. configured for native debugging on each host.  On the other hand,
  196. whenever you specify both hosts and targets on the same command line,
  197. `configure' creates all combinations of the hosts and targets you list.
  198.  
  199.    If you run `configure' from a directory (notably, `gdb-4.2') that
  200. contains source directories for multiple libraries or programs,
  201. `configure' creates the `H-HOST/T-TARGET' subdirectories in each
  202. library or program's source directory.  For example, typing:
  203.  
  204.      cd gdb-4.2
  205.      configure sun4 +target=vxworks960
  206.  
  207. creates the following directories:
  208.  
  209.      gdb-4.2/H-sun4/T-vxworks960
  210.      gdb-4.2/bfd/H-sun4/T-vxworks960
  211.      gdb-4.2/gdb/H-sun4/T-vxworks960
  212.      gdb-4.2/libiberty/H-sun4/T-vxworks960
  213.      gdb-4.2/readline/H-sun4/T-vxworks960
  214.  
  215.    When you run `make' to build a program or library, you must run it
  216. in a configured directory.  If you made a single configuration,
  217. without subdirectories, run `make' in the source directory.  If you
  218. have `H-HOST/T-TARGET' subdirectories, run `make' in those
  219. subdirectories.
  220.  
  221.    The `Makefile' generated by `configure' for each source directory
  222. runs recursively, so that typing `make' in `gdb-4.2' (or in a
  223. `gdb-4.2/H-HOST/T-TARGET' subdirectory) builds all the required
  224. libraries, then GDB.
  225.  
  226.    When you have multiple hosts or targets configured, you can run
  227. `make' on them in parallel (for example, if they are NFS-mounted on
  228. each of the hosts); they will not interfere with each other.
  229.  
  230.    You can also use the `+objdir=ALTROOT' option to have the
  231. configured files placed in a parallel directory structure rather
  232. than alongside the source files; *note configure Options::..
  233.  
  234.  
  235. Specifying Names for Hosts and Targets
  236. ======================================
  237.  
  238.    The specifications used for hosts and targets in the `configure'
  239. script are based on a three-part naming scheme, but some short
  240. predefined aliases are also supported.  The full naming scheme
  241. encodes three pieces of information in the following pattern:
  242.  
  243.      ARCHITECTURE-VENDOR-OS
  244.  
  245.    For example, you can use the alias `sun4' as a HOST argument or in
  246. a `+target=TARGET' option, but the equivalent full name is
  247. `sparc-sun-sunos4'.
  248.  
  249.    The following table shows all the architectures, hosts, and OS
  250. prefixes that `configure' recognizes in GDB 4.2.  Entries in the "OS
  251. prefix" column ending in a `*' may be followed by a release number.
  252.  
  253.  
  254.      ARCHITECTURE  VENDOR        OS prefix
  255.      ------------+------------+-------------
  256.                  |            |
  257.       580        | altos      | aix*    
  258.       a29k       | amd        | amigados
  259.       alliant    | amdahl     | aout    
  260.       arm        | aout       | bout    
  261.       c1         | apollo     | bsd*    
  262.       c2         | att        | coff    
  263.       cray2      | bcs        | ctix*   
  264.       h8300      | bout       | dgux*   
  265.       i386       | bull       | dynix*  
  266.       i860       | cbm        | ebmon   
  267.       i960       | coff       | esix*   
  268.       m68000     | convergent | hds     
  269.       m68k       | convex     | hpux*   
  270.       m88k       | cray       | irix*   
  271.       mips       | dec        | isc*    
  272.       ns32k      | encore     | kern    
  273.       pyramid    | gould      | mach*   
  274.       romp       | hitachi    | msdos*  
  275.       rs6000     | hp         | newsos* 
  276.       sparc      | ibm        | nindy*  
  277.       tahoe      | intel      | osf*    
  278.       tron       | isi        | sco*    
  279.       vax        | little     | sunos*  
  280.       xmp        | mips       | svr4    
  281.       ymp        | motorola   | sym*    
  282.                  | ncr        | sysv*   
  283.                  | next       | ultrix* 
  284.                  | nyu        | unicos* 
  285.                  | sco        | unos*   
  286.                  | sequent    | uts     
  287.                  | sgi        | v88r*   
  288.                  | sony       | vms*    
  289.                  | sun        | vxworks*
  290.                  | unicom     |
  291.                  | utek       |
  292.                  | wrs        |
  293.  
  294.      *Warning:* Many combinations of architecture, vendor, and OS are
  295.      untested.
  296.  
  297.    The `configure' script accompanying GDB 4.2 does not provide any
  298. query facility to list all supported host and target names or
  299. aliases.  `configure' calls the Bourne shell script `config.sub' to
  300. map abbreviations to full names; you can read the script, if you
  301. wish, or you can use it to test your guesses on abbreviations--for
  302. example:
  303.  
  304.      % sh config.sub sun4
  305.      sparc-sun-sunos4
  306.      % sh config.sub sun3
  307.      m68k-sun-sunos4
  308.      % sh config.sub decstation
  309.      mips-dec-ultrix
  310.      % sh config.sub hp300bsd
  311.      m68k-hp-bsd
  312.      % sh config.sub i386v
  313.      i386-none-sysv
  314.      % sh config.sub i486v
  315.      *** Configuration "i486v" not recognized
  316.  
  317. `config.sub' is also distributed in the directory `gdb-4.2'.
  318.  
  319.  
  320. `configure' Options
  321. ===================
  322.  
  323.    Here is a summary of all the `configure' options and arguments
  324. that you might use for building GDB:
  325.  
  326.      configure [+destdir=DIR] [+subdirs]
  327.                [+objdir=ALTROOT] [+norecursion] [+rm]
  328.                [+target=TARGET...] HOST...
  329.  
  330. You may introduce options with the character `-' rather than `+' if
  331. you prefer; but you may abbreviate option names if you use `+'.
  332.  
  333. `+destdir=DIR'
  334.      DIR is an installation directory *path prefix*.  After you
  335.      configure with this option, `make install' will install GDB as
  336.     
  337.      `DIR/bin/gdb', and the libraries in `DIR/lib'.  If you specify
  338.      `+destdir=/usr/local', for example, `make install' creates
  339.      `/usr/local/bin/gdb'.
  340.  
  341. `+subdirs'
  342.      Write configuration specific files in subdirectories of the form
  343.  
  344.           H-HOST/T-TARGET
  345.  
  346.      (and configure the `Makefile' to generate object code in
  347.      subdirectories of this form as well).  Without this option, if
  348.      you specify only one configuration for GDB, `configure' will
  349.      use the same directory for source, configured files, and
  350.      binaries.  This option is used automatically if you specify
  351.      more than one HOST or more than one `+target=TARGET' option on
  352.      the `configure' command line.
  353.  
  354. `+norecursion'
  355.      Configure only the directory where `configure' is executed; do
  356.      not propagate configuration to subdirectories.
  357.  
  358. `+objdir=ALTROOT'
  359.      ALTROOT is an alternative directory used as the root for
  360.      configured files.  `configure' will create directories under
  361.      ALTROOT in parallel to the source directories.  If you use
  362.      `+objdir=ALTROOT' with `+subdirs', `configure' also builds the
  363.      `H-HOST/T-TARGET' subdirectories in the directory tree rooted
  364.      in ALTROOT.
  365.  
  366. `+rm'
  367.      Remove the configuration that the other arguments specify.
  368.  
  369. `+target=TARGET ...'
  370.      Configure GDB for cross-debugging programs running on each
  371.      specified TARGET.  You may specify as many `+target' options as
  372.      you wish.  Without this option, GDB is configured to debug
  373.      programs that run on the same machine (HOST) as GDB itself.
  374.  
  375.      There is no convenient way to generate a list of all available
  376.      targets.
  377.  
  378. `HOST ...'
  379.      Configure GDB to run on each specified HOST.  You may specify as
  380.      many host names as you wish.
  381.  
  382.      There is no convenient way to generate a list of all available
  383.      hosts.
  384.  
  385. `configure' accepts other options, for compatibility with configuring
  386. other GNU tools recursively; but these are the only options that
  387. affect GDB or its supporting libraries.
  388.  
  389.  
  390.         Languages other than C
  391.  
  392. C++ support has been integrated into gdb.  Partial Modula-2 support is
  393. now in GDB.  GDB should work with FORTRAN programs.  (If you have
  394. problems, please send a bug report; you may have to refer to some
  395. FORTRAN variables with a trailing underscore).  I am not aware of
  396. anyone who is working on getting gdb to use the syntax of any other
  397. language.  Pascal programs which use sets, subranges, file variables,
  398. or nested functions will not currently work.
  399.  
  400.  
  401.         Kernel debugging
  402.  
  403. I have't done this myself so I can't really offer any advice.
  404. Remote debugging over serial lines works fine, but the kernel debugging
  405. code in here has not been tested in years.  Van Jacobson claims to have
  406. better kernel debugging, but won't release it for ordinary mortals.
  407.  
  408.  
  409.         Remote debugging
  410.  
  411. The files m68k-stub.c and i386-stub.c contain two examples of remote
  412. stubs to be used with remote.c.  They are designeded to run standalone
  413. on a 68k or 386 cpu and communicate properly with the remote.c stub
  414. over a serial line.
  415.  
  416. The file rem-multi.shar contains a general stub that can probably
  417. run on various different flavors of unix to allow debugging over a
  418. serial line from one machine to another.
  419.  
  420. Some working remote interfaces for talking to existing ROM monitors
  421. are:
  422.     remote-eb.c     AMD 29000 "EBMON"
  423.     remote-nindy.c   Intel 960 "Nindy"
  424.     remote-adapt.c     AMD 29000 "Adapt"
  425.     remote-mm.c     AMD 29000 "minimon"
  426.  
  427. Remote-vx.c and the vx-share subdirectory contain a remote interface for the
  428. VxWorks realtime kernel, which communicates over TCP using the Sun
  429. RPC library.  This would be a useful starting point for other remote-
  430. via-ethernet back ends.
  431.  
  432. [This section seems to be out of date, I have never seen the "rapp"
  433. program, though I would like to.  FIXME.]
  434. `rapp' runs under unix and acts as a remote stub (like rem-multi.shar
  435. distributed with GDB version 3).  Currently it just works over UDP
  436. (network), not over a serial line.  To get it running
  437. * Compile GDB on the host machine as usual
  438. * Compile rapp on the target machine, giving for both host and target
  439.   the type of the target machine
  440. * Install "gdb" in /etc/services on both machines.
  441.  
  442.  
  443.         Reporting Bugs
  444.  
  445. The correct address for reporting bugs found in gdb is
  446. "bug-gdb@prep.ai.mit.edu".  Please email all bugs to that address.
  447.  
  448. GDB can produce warnings about symbols that it does not understand.  By
  449. default, these warnings are disabled.  You can enable them by executing
  450. `set complaint 10' (which you can put in your ~/.gdbinit if you like).
  451. I recommend doing this if you are working on a compiler, assembler,
  452. linker, or gdb, since it will point out problems that you may be able
  453. to fix.  Warnings produced during symbol reading indicate some mismatch
  454. between the object file and GDB's symbol reading code.  In many cases,
  455. it's a mismatch between the specs for the object file format, and what
  456. the compiler actually outputs or the debugger actually understands.
  457.  
  458. If you port gdb to a new machine, please send the required changes
  459. to bug-gdb@prep.ai.mit.edu.  If your changes are more than a few
  460. lines, obtain and send in a copyright assignment from gnu@prep.ai.mit.edu,
  461. as described in the section `Writing Code for GDB'.
  462.  
  463.  
  464.         X Windows versus GDB
  465.  
  466. xgdb is obsolete.  We are not doing any development or support of it.
  467.  
  468. There is an "xxgdb", which shows more promise, which was posted to
  469. comp.sources.x.
  470.  
  471. For those intersted in auto display of source and the availability of
  472. an editor while debugging I suggest trying gdb-mode in gnu-emacs
  473. (Try typing M-x gdb RETURN).  Comments on this mode are welcome.
  474.  
  475.  
  476.         Writing Code for GDB
  477.  
  478. We appreciate having users contribute code that is of general use, but
  479. for it to be included in future GDB releases it must be cleanly
  480. written.  We do not want to include changes that will needlessly make
  481. future maintainance difficult.  It is not much harder to do things
  482. right, and in the long term it is worth it to the GNU project, and
  483. probably to you individually as well.
  484.  
  485. If you make substantial changes, you'll have to file a copyright
  486. assignment with the Free Software Foundation before we can produce a
  487. release that includes your changes.  Send mail requesting the copyright
  488. assignment to gnu@prep.ai.mit.edu.  Do this early, like before the
  489. changes actually work, or even before you start them, because a manager
  490. or lawyer on your end will probably make this a slow process.
  491.  
  492. Please code according to the GNU coding standards.  If you do not have
  493. a copy, you can request one by sending mail to gnu@prep.ai.mit.edu.
  494.  
  495. Please try to avoid making machine-specific changes to
  496. machine-independent files.  If this is unavoidable, put a hook in the
  497. machine-independent file which calls a (possibly) machine-dependent
  498. macro (for example, the IGNORE_SYMBOL macro can be used for any
  499. symbols which need to be ignored on a specific machine.  Calling
  500. IGNORE_SYMBOL in dbxread.c is a lot cleaner than a maze of #if
  501. defined's).  The machine-independent code should do whatever "most"
  502. machines want if the macro is not defined in param.h.  Using #if
  503. defined can sometimes be OK (e.g. SET_STACK_LIMIT_HUGE) but should be
  504. conditionalized on a specific feature of an operating system (set in
  505. tm.h or xm.h) rather than something like #if defined(vax) or #if
  506. defined(SYSV).  If you use an #ifdef on some symbol that is defined
  507. in a header file (e.g. #ifdef TIOCSETP), *please* make sure that you
  508. have #include'd the relevant header file in that module!
  509.  
  510. It is better to replace entire routines which may be system-specific,
  511. rather than put in a whole bunch of hooks which are probably not going
  512. to be helpful for any purpose other than your changes.  For example,
  513. if you want to modify dbxread.c to deal with DBX debugging symbols
  514. which are in COFF files rather than BSD a.out files, do something
  515. along the lines of a macro GET_NEXT_SYMBOL, which could have
  516. different definitions for COFF and a.out, rather than trying to put
  517. the necessary changes throughout all the code in dbxread.c that
  518. currently assumes BSD format.
  519.  
  520. When generalizing GDB along a particular interface, please use an
  521. attribute-struct rather than inserting tests or switch statements
  522. everywhere.  For example, GDB has been generalized to handle multiple
  523. kinds of remote interfaces -- not by #ifdef's everywhere, but by
  524. defining the "target_ops" structure and having a current target (as
  525. well as a stack of targets below it, for memory references).  Whenever
  526. something needs to be done that depends on which remote interface we
  527. are using, a flag in the current target_ops structure is tested (e.g.
  528. `target_has_stack'), or a function is called through a pointer in the
  529. current target_ops structure.  In this way, when a new remote interface
  530. is added, only one module needs to be touched -- the one that actually
  531. implements the new remote interface.  Other examples of
  532. attribute-structs are BFD access to multiple kinds of object file
  533. formats, or GDB's access to multiple source languages.
  534.  
  535. Please avoid duplicating code.  For example, in GDB 3.x all the stuff
  536. in infptrace.c was duplicated in *-dep.c, and so changing something
  537. was very painful.  In GDB 4.x, these have all been consolidated
  538. into infptrace.c.  infptrace.c can deal with variations between
  539. systems the same way any system-independent file would (hooks, #if
  540. defined, etc.), and machines which are radically different don't need
  541. to use infptrace.c at all.  The same was true of core_file_command
  542. and exec_file_command.
  543.  
  544.  
  545.         Debugging gdb with itself
  546.  
  547. If gdb is limping on your machine, this is the preferred way to get it
  548. fully functional.  Be warned that in some ancient Unix systems, like
  549. Ultrix 4.0, a program can't be running in one process while it is being
  550. debugged in another.  Rather than doing "./gdb ./gdb", which works on
  551. Suns and such, you can copy gdb to gdb2 and then do "./gdb ./gdb2".
  552.  
  553. When you run gdb in the gdb source directory, it will read a ".gdbinit"
  554. file that sets up some simple things to make debugging gdb easier.  The
  555. "info" command, when executed without a subcommand in a gdb being
  556. debugged by gdb, will pop you back up to the top level gdb.  See
  557. .gdbinit for details.
  558.  
  559. I strongly recommend printing out the reference card and using it.
  560. Send reference-card suggestions to bug-gdb@prep.ai.mit.edu, just like bugs.
  561.  
  562. If you use emacs, you will probably want to do a "make TAGS" after you
  563. configure your distribution; this will put the machine dependent
  564. routines for your local machine where they will be accessed first by a
  565. M-period.
  566.  
  567. Also, make sure that you've either compiled gdb with your local cc, or
  568. have run `fixincludes' if you are compiling with gcc.
  569.  
  570. (this is for editing this file with GNU emacs)
  571. Local Variables:
  572. mode: text
  573. End:
  574.